home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Developer Utilities / Installer 4.0.3 SDK / DeveloperInterfaces / AIncludes / ActionAtomIntf.a
Encoding:
Text File  |  1994-11-15  |  906 b   |  41 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        ActionAtomIntf.a
  3. ;
  4. ;    Contains:    Assembler declarations for things the Installer wants to tell 
  5. ;                action atoms about.
  6. ;
  7. ;    Written by:    Bobby Carp
  8. ;
  9. ;    Copyright:    © 1990, 1992 by Apple Computer, Inc., all rights reserved.
  10. ;
  11. ;    Change History (most recent first):
  12. ;
  13. ;         <1>      7/6/93    KBA        first checked in
  14. ;         <2>     11/7/90    BAC        Adding the AAPBRec that defines the parameters an action atom
  15. ;                                    receives.
  16. ;         <1>     10/8/90    BAC        first checked in
  17. ;
  18. ;    To Do:
  19. ;
  20.  
  21.  
  22. before               EQU         0
  23. after            EQU         1
  24. cleanUpCancel    EQU            2
  25.  
  26.  
  27. ; The action atom param block record contains all of the parameters that action atoms 
  28. ; receive.  The first (and only) parameter to action atoms is a ptr to this block 
  29.  
  30. AAPBRec RECORD    0
  31. targetVRefNum        ds.w    1
  32. blessedDirID        ds.l    1
  33. aaRefCon            ds.l    1
  34. doingInstall        ds.b    1    
  35. whichStage            ds.b    1
  36. didLiveUpdate        ds.b    1
  37. pad1                ds.b    1
  38. installerTempDirID    ds.l    1
  39. size                EQU        *
  40.         ENDR
  41.